home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-19 / iritsm3s.zip / DOSINTR.H < prev    next >
C/C++ Source or Header  |  1991-12-21  |  767b  |  25 lines

  1. /*****************************************************************************
  2. *   "Irit" - the 3d polygonal solid modeller.                     *
  3. *                                         *
  4. * Written by:  Gershon Elber                Ver 0.2, Mar. 1990   *
  5. ******************************************************************************
  6. * General, visible to others, definitions of DosIntr module.             *
  7. *****************************************************************************/
  8.  
  9. /* Prototypes of the functions in the module: */
  10.  
  11. #ifndef    DOS_INTR_GH
  12. #define    DOS_INTR_GH
  13.  
  14. void DosPrintDir(char *Match);
  15. void DosChangeDir(char *s);
  16. double
  17. #ifdef __MSDOS__
  18. cdecl
  19. #endif /* __MSDOS__ */
  20. DosGetTime(double ResetTime);
  21. void DosEditFile(char *s);
  22. void DosSystem(void);
  23.  
  24. #endif    /* DOS_INTR_GH */
  25.